projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
7f93e2a
)
(max_specpdl_size, max_lisp_eval_depth): Define as int,
author
Andreas Schwab
<schwab@suse.de>
Tue, 1 Jan 2002 16:59:17 +0000
(16:59 +0000)
committer
Andreas Schwab
<schwab@suse.de>
Tue, 1 Jan 2002 16:59:17 +0000
(16:59 +0000)
not EMACS_INT, to make them compatible with DEFVAR_INT.
src/eval.c
patch
|
blob
|
history
diff --git
a/src/eval.c
b/src/eval.c
index a625d679e0f9fbba3f079fda24629429709e9e62..3776b6de016c2cdc0ef7f1e4887caeb7a2b10a1c 100644
(file)
--- a/
src/eval.c
+++ b/
src/eval.c
@@
-119,7
+119,7
@@
struct specbinding *specpdl_ptr;
/* Maximum size allowed for specpdl allocation */
-
EMACS_INT
max_specpdl_size;
+
int
max_specpdl_size;
/* Depth in Lisp evaluations and function calls. */
@@
-127,7
+127,7
@@
int lisp_eval_depth;
/* Maximum allowed depth in Lisp evaluations and function calls. */
-
EMACS_INT
max_lisp_eval_depth;
+
int
max_lisp_eval_depth;
/* Nonzero means enter debugger before next function call */